Erros: tipo(T), modo(M), dominio(D), semanticos(aparte)




----------------------------------------------------------------

DICT_SET


dict_set(5, 1, 5) - T


dict_set(NONSENSE, 1, 5) - M


dict_new(A), dict_set(A, NONSENSE, 5) - M


dict_new(A), dict_set(A, 1, NONSENSE) - M //funcional na proxima versao


--

DICT_CLEAR


dict_clear(5) - T


dict_clear(NONSENSE) - M


--

DICT_NEW


dict_new(5) - T


--

DICT_DELETE


dict_delete(5) - T


dict_delete(NONSENSE) - M


--


DICT_GET



dict_get(5, 1, T) - T


dict_get(NONSENSE, 1, T) - M


dict_new(A), dict_get(A, NONSENSE, T) - M


--


DICT_DELETE_ITEM


dict_delete_item(5, 1) - T


dict_delete_item(NONSENSE, 1) - M


dict_new(A), dict_delete_item(A, NONSENSE). - M


--

DICT_WRITE


dict_write(5) - T


dict_write(NONSENSE) - M


